[DEPRECATED] Use form field endpoints instead. Retrieves a specific incident custom field selection by id
curl --request GET \
--url https://api.rootly.com/v1/incident_custom_field_selections/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1",
"type": "incident_custom_field_selections",
"attributes": {
"custom_field_id": 172,
"incident_id": "bf790e1d-806e-4591-b67b-deab47325f8e",
"value": "A voluptas sapiente ut.",
"selected_option_ids": []
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_custom_field_selection found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/incident_custom_field_selections/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1",
"type": "incident_custom_field_selections",
"attributes": {
"custom_field_id": 172,
"incident_id": "bf790e1d-806e-4591-b67b-deab47325f8e",
"value": "A voluptas sapiente ut.",
"selected_option_ids": []
}
}
}